home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELP.H < prev    next >
Text File  |  1992-05-31  |  587b  |  24 lines

  1. /****
  2.  * CMandelPane.h
  3.  *
  4.  *    Pane class for a typical application.
  5.  *
  6.  ****/
  7.  
  8. #define _H_CMandelPane            /* Include this file only once */
  9. #include "CPixMapPane.h"
  10.  
  11. class CMandelMap;
  12.  
  13. struct CMandelPane : CPixMapPane {
  14.                                     /** Contruction/Destruction **/
  15.     void        IMandelPane(CView *anEnclosure, CBureaucrat *aSupervisor,
  16.                             short aWidth, short aHeight,
  17.                             short aHEncl, short aVEncl,
  18.                             SizingOption aHSizing, SizingOption aVSizing,
  19.                             CMandelMap *);
  20.  
  21.     void        DoClick(Point hitPt, short modifierKeys, long when);
  22.     void        AdjustCursor(Point where, RgnHandle mouseRgn);
  23. };
  24.